Skip to main content
POST
/
action
/
meeting_followup_analyze_transcript
[F4] Analyze Transcript
curl --request POST \
  --url https://api-lr.agent.ai/v1/action/meeting_followup_analyze_transcript \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enriched_event": "{{enriched_event}}",
  "output_variable_name": "transcript_analysis",
  "user_role": "{{followup_context.primary_role}}",
  "user_goals": "{{followup_context.goals.raw_goals}}",
  "followup_context": "{{followup_context}}",
  "model": "gpt-5"
}
'
{
  "status": 123,
  "response": {}
}

Authorizations

Authorization
string
header
required

Bearer token from your account (https://agent.ai/user/integrations#api)

Body

application/json
enriched_event
string
default:{{enriched_event}}
required

The enriched event data with transcript.

output_variable_name
string
default:transcript_analysis
required

Variable name to store the analysis results.

Pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
user_role
string
default:{{followup_context.primary_role}}

User's role for context-aware analysis. Falls back to followup_context if empty.

user_goals
string
default:{{followup_context.goals.raw_goals}}

User's goals for focused analysis. Falls back to followup_context if empty.

followup_context
string
default:{{followup_context}}

Full context from [F2] Load Followup Context. Used as fallback for role/goals.

model
enum<string>
default:gpt-5

Model for transcript analysis.

Available options:
gpt-5,
gpt-5-mini,
claude-sonnet-4-5,
claude-haiku-4-5,
gpt-4o

Response

Successful response

status
integer<int32>

HTTP status code of the action response

response
object

Response data from the action